Skin SDK Visual
Skin SDK: The <visual> element
A visual is a zone with static graphics or dynamically change its display to reflect various things.
Syntax : <visual source="" type="" orientation="" direction="" granularity="" visibility="" os="" panel="" deck="">.
Inherited Attributes :
visibility="" os="" panel="" deck=""
See Global Element Attributes
Other Properties :
- source : possible values:
[list] - "beat" : The beat intensity
- "rotation" : The angle of the disc (depends on the position and the RPM speed)
- "arm" : The position of the turntable's arm (moves on PLAY and PAUSE)
- "volume" : The volume (depends on the crossfader and the level values)
- "position" : The position in the song
- Any of the "get ..." VDJ Script actions that return a numeric value
[/list]
Children :
[/list]
Example 1: A linear horizontal visual displaying Loop position on a bar, using vector graphics.
<visual source="loop_position" type="linear" orientation="horizontal">
<pos x="19" y="285"/>
<size width="99" height="7"/>
<off shape="square" color="jogringoff" radius="3"/>
<on shape="square" color="jogringon" radius="3"/>
</visual>
Example 2 : A simple colored area with vector graphics.
<visual>
<pos x="125-10" y="252-10"/>
<size width="12+20" height="12+20"/>
<off color="#404040" border="#808080" border_size="1"/>
</visual>
Example 3 : A simple colored area using color-type visual and a graphics mask.
<visual source="loop_roll_mode ? constant '#427db4' : constant '#00000000'" type="color">
<pos x="125" y="252"/>
<tooltip></tooltip>
<size width="12" height="12"/>
<mask x="195" y="1085"/>
</visual>
Example 4 : A jog-rotation visual pointing to the graphics that need to rotate (e.g. logo + needle)
<visual type="rotation" source="get_rotation" visibility="loaded">
<pos x="+19+61" y="+26+60"/>
<size width="64" height="64"/>
<on x="993" y="86" width="64" height="64"/>
</visual>
Example 5: A VU-meter visual pointing to the on image graphics using 23 "leds".
<visual source="get level" type="linear" orientation="vertical" granularity="23" direction="up" >
<pos x="+3" y="+3"/>
<size width="15" height="299"/>
<on x="1098" y="2393"/>
</visual>
Example 6 : A vector VU-meter type visual with <led>.
<visual type="vumeter" x="200" y="250" width="16" height="100" source="get_level" smooth="true" >
<led x="+0" y="+80" width="16" height="18">
<off color="gray" radius="2" border="black" border_size="1"/>
<on color="green" radius="2" border="black" border_size="1"/>
</led>
<led x="+0" y="+60"width="16" height="18">
<off color="gray" radius="2" border="black" border_size="1"/>
<on color="green" radius="2" border="black" border_size="1"/>
</led>
<led x="+0" y="+40" width="16" height="18">
<off color="gray" radius="2" border="black" border_size="1"/>
<on color="green" radius="2" border="black" border_size="1"/>
</led>
<led x="+0" y="+20" width="16" height="18">
<off color="gray" radius="2" border="black" border_size="1"/>
<on color="orange" radius="2" border="black" border_size="1"/>
</led>
<led x="+0" y="+0" width="16" height="18">
<off color="gray" radius="2" border="black" border_size="1"/>
<on color="red" radius="2" border="black" border_size="1"/>
</led>
</visual>